home *** CD-ROM | disk | FTP | other *** search
- #include <mac/quickdraw.h>
- #include <mac/toolintf.h>
- #include <mac/osintf.h>
- #include "def.h"
-
- #define WINDOW 128
-
- #define MENUS 4
-
- #define APPLE 1
-
- #define FILE 256
- #define NEW_GAME 1
- #define QUIT 3
-
- #define HELP 257
-
- #define COMMAND 258
- #define YOUR_MOVE 1
- #define REMOVE 2
- #define SHOW_GAME 3
- #define HINT 4
-
- #define FINGER 256
-
- MenuHandle my_menus[MENUS];
- int the_menu, the_item;
- EventRecord my_event;
- CursHandle h_curs;
- Cursor finger;
- WindowPtr which_w, the_w;
- WindowRecord w_record;
- Rect play_r, xy_r[XZIZE][YZIZE], hole_r[4], drag_r, message_r;
- Point mouse_p;
- GrafPort *save_port;
- LOGIC done_flag, message_flag;
-